home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_200 / 264_01 / chmod.doc < prev    next >
Text File  |  1980-01-01  |  512b  |  21 lines

  1. CHMOD
  2.  
  3. Purpose
  4. change file modes
  5.  
  6. Syntax
  7. chmod +|-ahrs file...
  8.  
  9. Comments
  10. Chmod can add and remove attributes from files.  The first argument
  11. specifies the attribute(s) to affect; if it starts with a '+', they will
  12. be forced on (added), and if it starts with a '-', they will be forced
  13. off (removed).
  14.  
  15. The allowed attributes are:
  16. a       archive
  17. h       hidden
  18. r       read only
  19. s       system
  20.  
  21.